home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1308.dms / var1308.adf / DNET2_10.LHA / DNet / Amiga / Sourcen.lha / doshand / DMakefile.Lattice next >
Text File  |  1993-01-14  |  415b  |  22 lines

  1.  
  2. #    DNET SERVERS
  3. #
  4. #  DNET (c)Copyright 1988, Matthew Dillon, All Rights Reserved.
  5. #
  6. #   Aztec C Compilation and Makefile
  7.  
  8. CFLAGS    = -iprivate_include: -cim -rr -v -O
  9. BIN    = /bin/
  10. OBDIR    = ltmp:dnet/
  11. SRCS    = *.c
  12. OBJS    = $(OBDIR)*.o
  13.  
  14. all: $(BIN)*
  15.  
  16. $(BIN)* : $(OBJS)
  17.     blink FROM %(right) LIB /lib/lattice_dnet.lib LIB:sup32.lib LIB:lcr.lib lib:amiga.lib TO %(left)
  18.  
  19. $(OBJS): $(SRCS)
  20.     lc $(CFLAGS) -o%(left) %(right)
  21.  
  22.